home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene1_2.dir / 00016_Script_--rollOver while guytext animates < prev    next >
Text File  |  1999-03-01  |  349b  |  16 lines

  1. on enterFrame
  2.   if rollover(2) then 
  3.     set the member of sprite(5) to member "GuyRollOverLOOP"
  4.     cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  5.     
  6.   end if
  7.   
  8.   if NOT rollover(2) then 
  9.     set the member of sprite(5) to "GuyStand"
  10.     cursor -1
  11.     go to frame "resetGuy"
  12.     
  13.   end if
  14.   
  15. end
  16.